home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / NewsTicker.sit / NewsTicker / source code / TickerGlobals.cp < prev    next >
Text File  |  1997-06-19  |  723b  |  24 lines

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    NewsTicker, my Hack for 1997
  4. #
  5. #    TickerGlobals.cp -    The basic data structures used by everywhere, including
  6. #                        our jGNE Hook routine
  7. #
  8. ------------------------------------------------------------------------------*/
  9. // All the globals for NewsTicker
  10.  
  11. #include "TickerGlobals.h"
  12.  
  13. /* GInBackground is maintained by our osEvent handling routines. Any part of
  14.    the program can check it to find out if it is currently in the background. */
  15. Boolean        gInBackground;        /* maintained by Initialize and DoEvent */
  16. Boolean        gDoneFlag = true;
  17.  
  18. // Our working globals
  19. FSSpec            gPrefsSpec;
  20. sPreferences    gThePrefs;
  21. sMyDataPtr        gOurGlobals = nil;
  22.  
  23.  
  24.